home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / diffs / diffuti2.6 / fnmatch.h < prev   
Encoding:
Text File  |  1994-08-05  |  565 b   |  16 lines

  1. *** orig/diffuti2.6/fnmatch.h    Sun Jan 23 21:57:12 1994
  2. --- src/diffuti2.6/fnmatch.h    Sun Jan 23 21:57:36 1994
  3. ***************
  4. *** 35,41 ****
  5. --- 35,44 ----
  6.   #endif /* C++ or ANSI C.  */
  7.   
  8.   /* Bits set in the FLAGS argument to `fnmatch'.  */
  9. + #ifndef FNM_PATHNAME /* djgpp sets this in <unistd.h> to `1' */
  10.   #define    FNM_PATHNAME    (1 << 0) /* No wildcard can ever match `/'.  */
  11. + #endif
  12.   #define    FNM_NOESCAPE    (1 << 1) /* Backslashes don't quote special chars.  */
  13.   #define    FNM_PERIOD    (1 << 2) /* Leading `.' is matched only explicitly.  */
  14.   
  15.